home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / sound / mrmpeg / delete.rexx < prev    next >
OS/2 REXX Batch file  |  1997-12-01  |  408b  |  15 lines

  1. /* Delete.rexx */
  2.  
  3. options results; address MrMPEG
  4.  
  5. MUIA_List_Active    = 0x8042391c;    MUIA_ShowMe        = 0x80429ba8
  6. MUIV_List_Remove_Active    = -1
  7.  
  8. list ID SLIST ATTRS MUIA_List_Active
  9. list ID SLIST POS result; parse var result filename','dummy','dummy2
  10. list ID SLIST REMOVE POS MUIV_List_Remove_Active
  11. check ID PLAY; playing = result
  12. getvar current_song
  13. if filename = result & playing = 1 then call Stop.rexx
  14. return
  15.